projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1d034f
)
Always force debug 0 for bootstrap test
author
Andrea Corallo
<akrl@sdf.org>
Mon, 20 Jan 2020 21:57:11 +0000
(21:57 +0000)
committer
Andrea Corallo
<akrl@sdf.org>
Mon, 20 Jan 2020 21:57:11 +0000
(21:57 +0000)
Debug symbols would make it fail otherwise.
test/src/comp-tests.el
patch
|
blob
|
history
diff --git
a/test/src/comp-tests.el
b/test/src/comp-tests.el
index 82a30424d09e5c400d1ed8c1f2ccfbcd4e32bc29..d71dad6dd591bb22bee3a962135b705dac8f10f6 100644
(file)
--- a/
test/src/comp-tests.el
+++ b/
test/src/comp-tests.el
@@
-48,7
+48,9
@@
Check that the resulting binaries do not differ."
(comp1-src (make-temp-file "stage1-" nil ".el"))
(comp2-src (make-temp-file "stage2-" nil ".el"))
(comp1 (concat comp1-src "n"))
- (comp2 (concat comp2-src "n")))
+ (comp2 (concat comp2-src "n"))
+ ;; Can't use debug symbols.
+ (comp-debug 0))
(copy-file comp-src comp1-src t)
(copy-file comp-src comp2-src t)
(load (concat comp-src "c") nil nil t t)